9068d0d5e1f70ea61fd49b97756c52e90c592bc7,specialpurpose/googlecheckout/src/org/ofbiz/googlecheckout/GoogleCheckoutHelper.java,GoogleCheckoutHelper,getPartyInfo,#Address#Address#,268
Before Change
// check the billing address again (in case it was just created)
billInfo = PartyWorker.findMatchingPartyAndPostalAddress(delegator, billAddr.getAddress1(),
billAddr.getAddress2(), billAddr.getCity(), billAddr.getRegion(),
billAddr.getPostalCode(), null, billAddr.getCountryCode(), billAddr.getStructuredName().getFirstName(),
null, billAddr.getStructuredName().getLastName());
if (billInfo != null && billInfo.size() > 0) {
GenericValue first = EntityUtil.getFirst(billInfo);
After Change
// check the billing address again (in case it was just created)
billInfo = PartyWorker.findMatchingPartyAndPostalAddress(delegator, billAddr.getAddress1(),
billAddr.getAddress2(), billAddr.getCity(), billAddr.getRegion(),
billAddr.getPostalCode(), null, getCountryGeoId(billAddr.getCountryCode()), billAddr.getStructuredName().getFirstName(),
null, billAddr.getStructuredName().getLastName());
if (billInfo != null && billInfo.size() > 0) {